home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / ruby / 1.8 / pathname.rb < prev    next >
Text File  |  2007-02-12  |  30KB  |  1,063 lines

  1. #
  2. # = pathname.rb
  3. #
  4. # Object-Oriented Pathname Class
  5. #
  6. # Author:: Tanaka Akira <akr@m17n.org>
  7. # Documentation:: Author and Gavin Sinclair
  8. #
  9. # For documentation, see class Pathname.
  10. #
  11. # <tt>pathname.rb</tt> is distributed with Ruby since 1.8.0.
  12. #
  13.  
  14. #
  15. # == Pathname
  16. #
  17. # Pathname represents a pathname which locates a file in a filesystem.
  18. # The pathname depends on OS: Unix, Windows, etc.
  19. # Pathname library works with pathnames of local OS.
  20. # However non-Unix pathnames are supported experimentally.
  21. #
  22. # It does not represent the file itself.
  23. # A Pathname can be relative or absolute.  It's not until you try to
  24. # reference the file that it even matters whether the file exists or not.
  25. #
  26. # Pathname is immutable.  It has no method for destructive update.
  27. #
  28. # The value of this class is to manipulate file path information in a neater
  29. # way than standard Ruby provides.  The examples below demonstrate the
  30. # difference.  *All* functionality from File, FileTest, and some from Dir and
  31. # FileUtils is included, in an unsurprising way.  It is essentially a facade for
  32. # all of these, and more.
  33. #
  34. # == Examples
  35. #
  36. # === Example 1: Using Pathname
  37. #
  38. #   require 'pathname'
  39. #   p = Pathname.new("/usr/bin/ruby")
  40. #   size = p.size              # 27662
  41. #   isdir = p.directory?       # false
  42. #   dir  = p.dirname           # Pathname:/usr/bin
  43. #   base = p.basename          # Pathname:ruby
  44. #   dir, base = p.split        # [Pathname:/usr/bin, Pathname:ruby]
  45. #   data = p.read
  46. #   p.open { |f| _ } 
  47. #   p.each_line { |line| _ }
  48. #
  49. # === Example 2: Using standard Ruby
  50. #
  51. #   p = "/usr/bin/ruby"
  52. #   size = File.size(p)        # 27662
  53. #   isdir = File.directory?(p) # false
  54. #   dir  = File.dirname(p)     # "/usr/bin"
  55. #   base = File.basename(p)    # "ruby"
  56. #   dir, base = File.split(p)  # ["/usr/bin", "ruby"]
  57. #   data = File.read(p)
  58. #   File.open(p) { |f| _ } 
  59. #   File.foreach(p) { |line| _ }
  60. #
  61. # === Example 3: Special features
  62. #
  63. #   p1 = Pathname.new("/usr/lib")   # Pathname:/usr/lib
  64. #   p2 = p1 + "ruby/1.8"            # Pathname:/usr/lib/ruby/1.8
  65. #   p3 = p1.parent                  # Pathname:/usr
  66. #   p4 = p2.relative_path_from(p3)  # Pathname:lib/ruby/1.8
  67. #   pwd = Pathname.pwd              # Pathname:/home/gavin
  68. #   pwd.absolute?                   # true
  69. #   p5 = Pathname.new "."           # Pathname:.
  70. #   p5 = p5 + "music/../articles"   # Pathname:music/../articles
  71. #   p5.cleanpath                    # Pathname:articles
  72. #   p5.realpath                     # Pathname:/home/gavin/articles
  73. #   p5.children                     # [Pathname:/home/gavin/articles/linux, ...]
  74. # == Breakdown of functionality
  75. #
  76. # === Core methods
  77. #
  78. # These methods are effectively manipulating a String, because that's all a path
  79. # is.  Except for #mountpoint?, #children, and #realpath, they don't access the
  80. # filesystem.
  81. #
  82. # - +
  83. # - #join
  84. # - #parent
  85. # - #root?
  86. # - #absolute?
  87. # - #relative?
  88. # - #relative_path_from
  89. # - #each_filename
  90. # - #cleanpath
  91. # - #realpath
  92. # - #children
  93. # - #mountpoint?
  94. #
  95. # === File status predicate methods
  96. #
  97. # These methods are a facade for FileTest:
  98. # - #blockdev?
  99. # - #chardev?
  100. # - #directory?
  101. # - #executable?
  102. # - #executable_real?
  103. # - #exist?
  104. # - #file?
  105. # - #grpowned?
  106. # - #owned?
  107. # - #pipe?
  108. # - #readable?
  109. # - #world_readable?
  110. # - #readable_real?
  111. # - #setgid?
  112. # - #setuid?
  113. # - #size
  114. # - #size?
  115. # - #socket?
  116. # - #sticky?
  117. # - #symlink?
  118. # - #writable?
  119. # - #world_writable?
  120. # - #writable_real?
  121. # - #zero?
  122. #
  123. # === File property and manipulation methods
  124. #
  125. # These methods are a facade for File:
  126. # - #atime
  127. # - #ctime
  128. # - #mtime
  129. # - #chmod(mode)
  130. # - #lchmod(mode)
  131. # - #chown(owner, group)
  132. # - #lchown(owner, group)
  133. # - #fnmatch(pattern, *args)
  134. # - #fnmatch?(pattern, *args)
  135. # - #ftype
  136. # - #make_link(old)
  137. # - #open(*args, &block)
  138. # - #readlink
  139. # - #rename(to)
  140. # - #stat
  141. # - #lstat
  142. # - #make_symlink(old)
  143. # - #truncate(length)
  144. # - #utime(atime, mtime)
  145. # - #basename(*args)
  146. # - #dirname
  147. # - #extname
  148. # - #expand_path(*args)
  149. # - #split
  150. #
  151. # === Directory methods
  152. #
  153. # These methods are a facade for Dir:
  154. # - Pathname.glob(*args)
  155. # - Pathname.getwd / Pathname.pwd
  156. # - #rmdir
  157. # - #entries
  158. # - #each_entry(&block)
  159. # - #mkdir(*args)
  160. # - #opendir(*args)
  161. #
  162. # === IO
  163. #
  164. # These methods are a facade for IO:
  165. # - #each_line(*args, &block)
  166. # - #read(*args)
  167. # - #readlines(*args)
  168. # - #sysopen(*args)
  169. #
  170. # === Utilities
  171. #
  172. # These methods are a mixture of Find, FileUtils, and others:
  173. # - #find(&block)
  174. # - #mkpath
  175. # - #rmtree
  176. # - #unlink / #delete
  177. #
  178. #
  179. # == Method documentation
  180. #
  181. # As the above section shows, most of the methods in Pathname are facades.  The
  182. # documentation for these methods generally just says, for instance, "See
  183. # FileTest.writable?", as you should be familiar with the original method
  184. # anyway, and its documentation (e.g. through +ri+) will contain more
  185. # information.  In some cases, a brief description will follow.
  186. #
  187. class Pathname
  188.  
  189.   # :stopdoc:
  190.   if RUBY_VERSION < "1.9"
  191.     TO_PATH = :to_str
  192.   else
  193.     # to_path is implemented so Pathname objects are usable with File.open, etc.
  194.     TO_PATH = :to_path
  195.   end
  196.   # :startdoc:
  197.  
  198.   #
  199.   # Create a Pathname object from the given String (or String-like object).
  200.   # If +path+ contains a NUL character (<tt>\0</tt>), an ArgumentError is raised.
  201.   #
  202.   def initialize(path)
  203.     path = path.__send__(TO_PATH) if path.respond_to? TO_PATH
  204.     @path = path.dup
  205.  
  206.     if /\0/ =~ @path
  207.       raise ArgumentError, "pathname contains \\0: #{@path.inspect}"
  208.     end
  209.  
  210.     self.taint if @path.tainted?
  211.   end
  212.  
  213.   def freeze() super; @path.freeze; self end
  214.   def taint() super; @path.taint; self end
  215.   def untaint() super; @path.untaint; self end
  216.  
  217.   #
  218.   # Compare this pathname with +other+.  The comparison is string-based.
  219.   # Be aware that two different paths (<tt>foo.txt</tt> and <tt>./foo.txt</tt>)
  220.   # can refer to the same file.
  221.   #
  222.   def ==(other)
  223.     return false unless Pathname === other
  224.     other.to_s == @path
  225.   end
  226.   alias === ==
  227.   alias eql? ==
  228.  
  229.   # Provides for comparing pathnames, case-sensitively.
  230.   def <=>(other)
  231.     return nil unless Pathname === other
  232.     @path.tr('/', "\0") <=> other.to_s.tr('/', "\0")
  233.   end
  234.  
  235.   def hash # :nodoc:
  236.     @path.hash
  237.   end
  238.  
  239.   # Return the path as a String.
  240.   def to_s
  241.     @path.dup
  242.   end
  243.  
  244.   # to_path is implemented so Pathname objects are usable with File.open, etc.
  245.   alias_method TO_PATH, :to_s
  246.  
  247.   def inspect # :nodoc:
  248.     "#<#{self.class}:#{@path}>"
  249.   end
  250.  
  251.   # Return a pathname which is substituted by String#sub.
  252.   def sub(pattern, *rest, &block)
  253.     self.class.new(@path.sub(pattern, *rest, &block))
  254.   end
  255.  
  256.   if File::ALT_SEPARATOR
  257.     SEPARATOR_PAT = /[#{Regexp.quote File::ALT_SEPARATOR}#{Regexp.quote File::SEPARATOR}]/
  258.   else
  259.     SEPARATOR_PAT = /#{Regexp.quote File::SEPARATOR}/
  260.   end
  261.  
  262.   # chop_basename(path) -> [pre-basename, basename] or nil
  263.   def chop_basename(path)
  264.     base = File.basename(path)
  265.     if /\A#{SEPARATOR_PAT}?\z/ =~ base
  266.       return nil
  267.     else
  268.       return path[0, path.rindex(base)], base
  269.     end
  270.   end
  271.   private :chop_basename
  272.  
  273.   # split_names(path) -> prefix, [name, ...]
  274.   def split_names(path)
  275.     names = []
  276.     while r = chop_basename(path)
  277.       path, basename = r
  278.       names.unshift basename
  279.     end
  280.     return path, names
  281.   end
  282.   private :split_names
  283.  
  284.   def prepend_prefix(prefix, relpath)
  285.     if relpath.empty?
  286.       File.dirname(prefix)
  287.     elsif /#{SEPARATOR_PAT}/ =~ prefix
  288.       prefix = File.dirname(prefix)
  289.       prefix = File.join(prefix, "") if File.basename(prefix + 'a') != 'a'
  290.       prefix + relpath
  291.     else
  292.       prefix + relpath
  293.     end
  294.   end
  295.   private :prepend_prefix
  296.  
  297.   # Returns clean pathname of +self+ with consecutive slashes and useless dots
  298.   # removed.  The filesystem is not accessed.
  299.   #
  300.   # If +consider_symlink+ is +true+, then a more conservative algorithm is used
  301.   # to avoid breaking symbolic linkages.  This may retain more <tt>..</tt>
  302.   # entries than absolutely necessary, but without accessing the filesystem,
  303.   # this can't be avoided.  See #realpath.
  304.   #
  305.   def cleanpath(consider_symlink=false)
  306.     if consider_symlink
  307.       cleanpath_conservative
  308.     else
  309.       cleanpath_aggressive
  310.     end
  311.   end
  312.  
  313.   #
  314.   # Clean the path simply by resolving and removing excess "." and ".." entries.
  315.   # Nothing more, nothing less.
  316.   #
  317.   def cleanpath_aggressive
  318.     path = @path
  319.     names = []
  320.     pre = path
  321.     while r = chop_basename(pre)
  322.       pre, base = r
  323.       case base
  324.       when '.'
  325.       when '..'
  326.         names.unshift base
  327.       else
  328.         if names[0] == '..'
  329.           names.shift
  330.         else
  331.           names.unshift base
  332.         end
  333.       end
  334.     end
  335.     if /#{SEPARATOR_PAT}/o =~ File.basename(pre)
  336.       names.shift while names[0] == '..'
  337.     end
  338.     self.class.new(prepend_prefix(pre, File.join(*names)))
  339.   end
  340.   private :cleanpath_aggressive
  341.  
  342.   # has_trailing_separator?(path) -> bool
  343.   def has_trailing_separator?(path)
  344.     if r = chop_basename(path)
  345.       pre, basename = r
  346.       pre.length + basename.length < path.length
  347.     else
  348.       false
  349.     end
  350.   end
  351.   private :has_trailing_separator?
  352.  
  353.   # add_trailing_separator(path) -> path
  354.   def add_trailing_separator(path)
  355.     if File.basename(path + 'a') == 'a'
  356.       path
  357.     else
  358.       File.join(path, "") # xxx: Is File.join is appropriate to add separator?
  359.     end
  360.   end
  361.   private :add_trailing_separator
  362.  
  363.   def del_trailing_separator(path)
  364.     if r = chop_basename(path)
  365.       pre, basename = r
  366.       pre + basename
  367.     elsif /#{SEPARATOR_PAT}+\z/o =~ path
  368.       $` + File.dirname(path)[/#{SEPARATOR_PAT}*\z/o]
  369.     else
  370.       path
  371.     end
  372.   end
  373.   private :del_trailing_separator
  374.  
  375.   def cleanpath_conservative
  376.     path = @path
  377.     names = []
  378.     pre = path
  379.     while r = chop_basename(pre)
  380.       pre, base = r
  381.       names.unshift base if base != '.'
  382.     end
  383.     if /#{SEPARATOR_PAT}/o =~ File.basename(pre)
  384.       names.shift while names[0] == '..'
  385.     end
  386.     if names.empty?
  387.       self.class.new(File.dirname(pre))
  388.     else
  389.       if names.last != '..' && File.basename(path) == '.'
  390.         names << '.'
  391.       end
  392.       result = prepend_prefix(pre, File.join(*names))
  393.       if /\A(?:\.|\.\.)\z/ !~ names.last && has_trailing_separator?(path)
  394.         self.class.new(add_trailing_separator(result))
  395.       else
  396.         self.class.new(result)
  397.       end
  398.     end
  399.   end
  400.   private :cleanpath_conservative
  401.  
  402.   def realpath_rec(prefix, unresolved, h)
  403.     resolved = []
  404.     until unresolved.empty?
  405.       n = unresolved.shift
  406.       if n == '.'
  407.         next
  408.       elsif n == '..'
  409.         resolved.pop
  410.       else
  411.         path = prepend_prefix(prefix, File.join(*(resolved + [n])))
  412.         if h.include? path
  413.           if h[path] == :resolving
  414.             raise Errno::ELOOP.new(path)
  415.           else
  416.             prefix, *resolved = h[path]
  417.           end
  418.         else
  419.           s = File.lstat(path)
  420.           if s.symlink?
  421.             h[path] = :resolving
  422.             link_prefix, link_names = split_names(File.readlink(path))
  423.             if link_prefix == ''
  424.               prefix, *resolved = h[path] = realpath_rec(prefix, resolved + link_names, h)
  425.             else
  426.               prefix, *resolved = h[path] = realpath_rec(link_prefix, link_names, h)
  427.             end
  428.           else
  429.             resolved << n
  430.             h[path] = [prefix, *resolved]
  431.           end
  432.         end
  433.       end
  434.     end
  435.     return prefix, *resolved
  436.   end
  437.   private :realpath_rec
  438.  
  439.   #
  440.   # Returns a real (absolute) pathname of +self+ in the actual filesystem.
  441.   # The real pathname doesn't contain symlinks or useless dots.
  442.   #
  443.   # No arguments should be given; the old behaviour is *obsoleted*. 
  444.   #
  445.   def realpath
  446.     path = @path
  447.     prefix, names = split_names(path)
  448.     if prefix == ''
  449.       prefix, names2 = split_names(Dir.pwd)
  450.       names = names2 + names
  451.     end
  452.     prefix, *names = realpath_rec(prefix, names, {})
  453.     self.class.new(prepend_prefix(prefix, File.join(*names)))
  454.   end
  455.  
  456.   # #parent returns the parent directory.
  457.   #
  458.   # This is same as <tt>self + '..'</tt>.
  459.   def parent
  460.     self + '..'
  461.   end
  462.  
  463.   # #mountpoint? returns +true+ if <tt>self</tt> points to a mountpoint.
  464.   def mountpoint?
  465.     begin
  466.       stat1 = self.lstat
  467.       stat2 = self.parent.lstat
  468.       stat1.dev == stat2.dev && stat1.ino == stat2.ino ||
  469.         stat1.dev != stat2.dev
  470.     rescue Errno::ENOENT
  471.       false
  472.     end
  473.   end
  474.  
  475.   #
  476.   # #root? is a predicate for root directories.  I.e. it returns +true+ if the
  477.   # pathname consists of consecutive slashes.
  478.   #
  479.   # It doesn't access actual filesystem.  So it may return +false+ for some
  480.   # pathnames which points to roots such as <tt>/usr/..</tt>.
  481.   #
  482.   def root?
  483.     !!(chop_basename(@path) == nil && /#{SEPARATOR_PAT}/o =~ @path)
  484.   end
  485.  
  486.   # Predicate method for testing whether a path is absolute.
  487.   # It returns +true+ if the pathname begins with a slash.
  488.   def absolute?
  489.     !relative?
  490.   end
  491.  
  492.   # The opposite of #absolute?
  493.   def relative?
  494.     path = @path
  495.     while r = chop_basename(path)
  496.       path, basename = r
  497.     end
  498.     path == ''
  499.   end
  500.  
  501.   #
  502.   # Iterates over each component of the path.
  503.   #
  504.   #   Pathname.new("/usr/bin/ruby").each_filename {|filename| ... }
  505.   #     # yields "usr", "bin", and "ruby".
  506.   #
  507.   def each_filename # :yield: filename
  508.     prefix, names = split_names(@path)
  509.     names.each {|filename| yield filename }
  510.     nil
  511.   end
  512.  
  513.   # Iterates over and yields a new Pathname object
  514.   # for each element in the given path in descending order.
  515.   #
  516.   #  Pathname.new('/path/to/some/file.rb').descend {|v| p v}
  517.   #     #<Pathname:/>
  518.   #     #<Pathname:/path>
  519.   #     #<Pathname:/path/to>
  520.   #     #<Pathname:/path/to/some>
  521.   #     #<Pathname:/path/to/some/file.rb>
  522.   #
  523.   #  Pathname.new('path/to/some/file.rb').descend {|v| p v}
  524.   #     #<Pathname:path>
  525.   #     #<Pathname:path/to>
  526.   #     #<Pathname:path/to/some>
  527.   #     #<Pathname:path/to/some/file.rb>
  528.   #
  529.   # It doesn't access actual filesystem.
  530.   #
  531.   # This method is available since 1.8.5.
  532.   #
  533.   def descend
  534.     vs = []
  535.     ascend {|v| vs << v }
  536.     vs.reverse_each {|v| yield v }
  537.     nil
  538.   end
  539.  
  540.   # Iterates over and yields a new Pathname object
  541.   # for each element in the given path in ascending order.
  542.   #
  543.   #  Pathname.new('/path/to/some/file.rb').ascend {|v| p v}
  544.   #     #<Pathname:/path/to/some/file.rb>
  545.   #     #<Pathname:/path/to/some>
  546.   #     #<Pathname:/path/to>
  547.   #     #<Pathname:/path>
  548.   #     #<Pathname:/>
  549.   #
  550.   #  Pathname.new('path/to/some/file.rb').ascend {|v| p v}
  551.   #     #<Pathname:path/to/some/file.rb>
  552.   #     #<Pathname:path/to/some>
  553.   #     #<Pathname:path/to>
  554.   #     #<Pathname:path>
  555.   #
  556.   # It doesn't access actual filesystem.
  557.   #
  558.   # This method is available since 1.8.5.
  559.   #
  560.   def ascend
  561.     path = @path
  562.     yield self
  563.     while r = chop_basename(path)
  564.       path, name = r
  565.       break if path.empty?
  566.       yield self.class.new(del_trailing_separator(path))
  567.     end
  568.   end
  569.  
  570.   #
  571.   # Pathname#+ appends a pathname fragment to this one to produce a new Pathname
  572.   # object.
  573.   #
  574.   #   p1 = Pathname.new("/usr")      # Pathname:/usr
  575.   #   p2 = p1 + "bin/ruby"           # Pathname:/usr/bin/ruby
  576.   #   p3 = p1 + "/etc/passwd"        # Pathname:/etc/passwd
  577.   #
  578.   # This method doesn't access the file system; it is pure string manipulation. 
  579.   #
  580.   def +(other)
  581.     other = Pathname.new(other) unless Pathname === other
  582.     Pathname.new(plus(@path, other.to_s))
  583.   end
  584.  
  585.   def plus(path1, path2) # -> path
  586.     prefix2 = path2
  587.     index_list2 = []
  588.     basename_list2 = []
  589.     while r2 = chop_basename(prefix2)
  590.       prefix2, basename2 = r2
  591.       index_list2.unshift prefix2.length
  592.       basename_list2.unshift basename2
  593.     end
  594.     return path2 if prefix2 != ''
  595.     prefix1 = path1
  596.     while true
  597.       while !basename_list2.empty? && basename_list2.first == '.'
  598.         index_list2.shift
  599.         basename_list2.shift
  600.       end
  601.       break unless r1 = chop_basename(prefix1)
  602.       prefix1, basename1 = r1
  603.       next if basename1 == '.'
  604.       if basename1 == '..' || basename_list2.empty? || basename_list2.first != '..'
  605.         prefix1 = prefix1 + basename1
  606.         break
  607.       end
  608.       index_list2.shift
  609.       basename_list2.shift
  610.     end
  611.     r1 = chop_basename(prefix1)
  612.     if !r1 && /#{SEPARATOR_PAT}/o =~ File.basename(prefix1)
  613.       while !basename_list2.empty? && basename_list2.first == '..'
  614.         index_list2.shift
  615.         basename_list2.shift
  616.       end
  617.     end
  618.     if !basename_list2.empty?
  619.       suffix2 = path2[index_list2.first..-1]
  620.       r1 ? File.join(prefix1, suffix2) : prefix1 + suffix2
  621.     else
  622.       r1 ? prefix1 : File.dirname(prefix1)
  623.     end
  624.   end
  625.   private :plus
  626.  
  627.   #
  628.   # Pathname#join joins pathnames.
  629.   #
  630.   # <tt>path0.join(path1, ..., pathN)</tt> is the same as
  631.   # <tt>path0 + path1 + ... + pathN</tt>.
  632.   #
  633.   def join(*args)
  634.     args.unshift self
  635.     result = args.pop
  636.     result = Pathname.new(result) unless Pathname === result
  637.     return result if result.absolute?
  638.     args.reverse_each {|arg|
  639.       arg = Pathname.new(arg) unless Pathname === arg
  640.       result = arg + result
  641.       return result if result.absolute?
  642.     }
  643.     result
  644.   end
  645.  
  646.   #
  647.   # Returns the children of the directory (files and subdirectories, not
  648.   # recursive) as an array of Pathname objects.  By default, the returned
  649.   # pathnames will have enough information to access the files.  If you set
  650.   # +with_directory+ to +false+, then the returned pathnames will contain the
  651.   # filename only.
  652.   #
  653.   # For example:
  654.   #   p = Pathname("/usr/lib/ruby/1.8")
  655.   #   p.children
  656.   #       # -> [ Pathname:/usr/lib/ruby/1.8/English.rb,
  657.   #              Pathname:/usr/lib/ruby/1.8/Env.rb,
  658.   #              Pathname:/usr/lib/ruby/1.8/abbrev.rb, ... ]
  659.   #   p.children(false)
  660.   #       # -> [ Pathname:English.rb, Pathname:Env.rb, Pathname:abbrev.rb, ... ]
  661.   #
  662.   # Note that the result never contain the entries <tt>.</tt> and <tt>..</tt> in
  663.   # the directory because they are not children.
  664.   #
  665.   # This method has existed since 1.8.1.
  666.   #
  667.   def children(with_directory=true)
  668.     with_directory = false if @path == '.'
  669.     result = []
  670.     Dir.foreach(@path) {|e|
  671.       next if e == '.' || e == '..'
  672.       if with_directory
  673.         result << self.class.new(File.join(@path, e))
  674.       else
  675.         result << self.class.new(e)
  676.       end
  677.     }
  678.     result
  679.   end
  680.  
  681.   #
  682.   # #relative_path_from returns a relative path from the argument to the
  683.   # receiver.  If +self+ is absolute, the argument must be absolute too.  If
  684.   # +self+ is relative, the argument must be relative too.
  685.   #
  686.   # #relative_path_from doesn't access the filesystem.  It assumes no symlinks.
  687.   #
  688.   # ArgumentError is raised when it cannot find a relative path.
  689.   #
  690.   # This method has existed since 1.8.1.
  691.   #
  692.   def relative_path_from(base_directory)
  693.     dest_directory = self.cleanpath.to_s
  694.     base_directory = base_directory.cleanpath.to_s
  695.     dest_prefix = dest_directory
  696.     dest_names = []
  697.     while r = chop_basename(dest_prefix)
  698.       dest_prefix, basename = r
  699.       dest_names.unshift basename if basename != '.'
  700.     end
  701.     base_prefix = base_directory
  702.     base_names = []
  703.     while r = chop_basename(base_prefix)
  704.       base_prefix, basename = r
  705.       base_names.unshift basename if basename != '.'
  706.     end
  707.     if dest_prefix != base_prefix
  708.       raise ArgumentError, "different prefix: #{dest_prefix.inspect} and #{base_directory.inspect}"
  709.     end
  710.     while !dest_names.empty? &&
  711.           !base_names.empty? &&
  712.           dest_names.first == base_names.first
  713.       dest_names.shift
  714.       base_names.shift
  715.     end
  716.     if base_names.include? '..'
  717.       raise ArgumentError, "base_directory has ..: #{base_directory.inspect}"
  718.     end
  719.     base_names.fill('..')
  720.     relpath_names = base_names + dest_names
  721.     if relpath_names.empty?
  722.       Pathname.new('.')
  723.     else
  724.       Pathname.new(File.join(*relpath_names))
  725.     end
  726.   end
  727. end
  728.  
  729. class Pathname    # * IO *
  730.   #
  731.   # #each_line iterates over the line in the file.  It yields a String object
  732.   # for each line.
  733.   #
  734.   # This method has existed since 1.8.1.
  735.   #
  736.   def each_line(*args, &block) # :yield: line
  737.     IO.foreach(@path, *args, &block)
  738.   end
  739.  
  740.   # Pathname#foreachline is *obsoleted* at 1.8.1.  Use #each_line.
  741.   def foreachline(*args, &block)
  742.     warn "Pathname#foreachline is obsoleted.  Use Pathname#each_line."
  743.     each_line(*args, &block)
  744.   end
  745.  
  746.   # See <tt>IO.read</tt>.  Returns all the bytes from the file, or the first +N+
  747.   # if specified.
  748.   def read(*args) IO.read(@path, *args) end
  749.  
  750.   # See <tt>IO.readlines</tt>.  Returns all the lines from the file.
  751.   def readlines(*args) IO.readlines(@path, *args) end
  752.  
  753.   # See <tt>IO.sysopen</tt>.
  754.   def sysopen(*args) IO.sysopen(@path, *args) end
  755. end
  756.  
  757.  
  758. class Pathname    # * File *
  759.  
  760.   # See <tt>File.atime</tt>.  Returns last access time.
  761.   def atime() File.atime(@path) end
  762.  
  763.   # See <tt>File.ctime</tt>.  Returns last (directory entry, not file) change time.
  764.   def ctime() File.ctime(@path) end
  765.  
  766.   # See <tt>File.mtime</tt>.  Returns last modification time.
  767.   def mtime() File.mtime(@path) end
  768.  
  769.   # See <tt>File.chmod</tt>.  Changes permissions.
  770.   def chmod(mode) File.chmod(mode, @path) end
  771.  
  772.   # See <tt>File.lchmod</tt>.
  773.   def lchmod(mode) File.lchmod(mode, @path) end
  774.  
  775.   # See <tt>File.chown</tt>.  Change owner and group of file.
  776.   def chown(owner, group) File.chown(owner, group, @path) end
  777.  
  778.   # See <tt>File.lchown</tt>.
  779.   def lchown(owner, group) File.lchown(owner, group, @path) end
  780.  
  781.   # See <tt>File.fnmatch</tt>.  Return +true+ if the receiver matches the given
  782.   # pattern.
  783.   def fnmatch(pattern, *args) File.fnmatch(pattern, @path, *args) end
  784.  
  785.   # See <tt>File.fnmatch?</tt> (same as #fnmatch).
  786.   def fnmatch?(pattern, *args) File.fnmatch?(pattern, @path, *args) end
  787.  
  788.   # See <tt>File.ftype</tt>.  Returns "type" of file ("file", "directory",
  789.   # etc).
  790.   def ftype() File.ftype(@path) end
  791.  
  792.   # See <tt>File.link</tt>.  Creates a hard link.
  793.   def make_link(old) File.link(old, @path) end
  794.  
  795.   # See <tt>File.open</tt>.  Opens the file for reading or writing.
  796.   def open(*args, &block) # :yield: file
  797.     File.open(@path, *args, &block)
  798.   end
  799.  
  800.   # See <tt>File.readlink</tt>.  Read symbolic link.
  801.   def readlink() self.class.new(File.readlink(@path)) end
  802.  
  803.   # See <tt>File.rename</tt>.  Rename the file.
  804.   def rename(to) File.rename(@path, to) end
  805.  
  806.   # See <tt>File.stat</tt>.  Returns a <tt>File::Stat</tt> object.
  807.   def stat() File.stat(@path) end
  808.  
  809.   # See <tt>File.lstat</tt>.
  810.   def lstat() File.lstat(@path) end
  811.  
  812.   # See <tt>File.symlink</tt>.  Creates a symbolic link.
  813.   def make_symlink(old) File.symlink(old, @path) end
  814.  
  815.   # See <tt>File.truncate</tt>.  Truncate the file to +length+ bytes.
  816.   def truncate(length) File.truncate(@path, length) end
  817.  
  818.   # See <tt>File.utime</tt>.  Update the access and modification times.
  819.   def utime(atime, mtime) File.utime(atime, mtime, @path) end
  820.  
  821.   # See <tt>File.basename</tt>.  Returns the last component of the path.
  822.   def basename(*args) self.class.new(File.basename(@path, *args)) end
  823.  
  824.   # See <tt>File.dirname</tt>.  Returns all but the last component of the path.
  825.   def dirname() self.class.new(File.dirname(@path)) end
  826.  
  827.   # See <tt>File.extname</tt>.  Returns the file's extension.
  828.   def extname() File.extname(@path) end
  829.  
  830.   # See <tt>File.expand_path</tt>.
  831.   def expand_path(*args) self.class.new(File.expand_path(@path, *args)) end
  832.  
  833.   # See <tt>File.split</tt>.  Returns the #dirname and the #basename in an
  834.   # Array.
  835.   def split() File.split(@path).map {|f| self.class.new(f) } end
  836.  
  837.   # Pathname#link is confusing and *obsoleted* because the receiver/argument
  838.   # order is inverted to corresponding system call.
  839.   def link(old)
  840.     warn 'Pathname#link is obsoleted.  Use Pathname#make_link.'
  841.     File.link(old, @path)
  842.   end
  843.  
  844.   # Pathname#symlink is confusing and *obsoleted* because the receiver/argument
  845.   # order is inverted to corresponding system call.
  846.   def symlink(old)
  847.     warn 'Pathname#symlink is obsoleted.  Use Pathname#make_symlink.'
  848.     File.symlink(old, @path)
  849.   end
  850. end
  851.  
  852.  
  853. class Pathname    # * FileTest *
  854.  
  855.   # See <tt>FileTest.blockdev?</tt>.
  856.   def blockdev?() FileTest.blockdev?(@path) end
  857.  
  858.   # See <tt>FileTest.chardev?</tt>.
  859.   def chardev?() FileTest.chardev?(@path) end
  860.  
  861.   # See <tt>FileTest.executable?</tt>.
  862.   def executable?() FileTest.executable?(@path) end
  863.  
  864.   # See <tt>FileTest.executable_real?</tt>.
  865.   def executable_real?() FileTest.executable_real?(@path) end
  866.  
  867.   # See <tt>FileTest.exist?</tt>.
  868.   def exist?() FileTest.exist?(@path) end
  869.  
  870.   # See <tt>FileTest.grpowned?</tt>.
  871.   def grpowned?() FileTest.grpowned?(@path) end
  872.  
  873.   # See <tt>FileTest.directory?</tt>.
  874.   def directory?() FileTest.directory?(@path) end
  875.  
  876.   # See <tt>FileTest.file?</tt>.
  877.   def file?() FileTest.file?(@path) end
  878.  
  879.   # See <tt>FileTest.pipe?</tt>.
  880.   def pipe?() FileTest.pipe?(@path) end
  881.  
  882.   # See <tt>FileTest.socket?</tt>.
  883.   def socket?() FileTest.socket?(@path) end
  884.  
  885.   # See <tt>FileTest.owned?</tt>.
  886.   def owned?() FileTest.owned?(@path) end
  887.  
  888.   # See <tt>FileTest.readable?</tt>.
  889.   def readable?() FileTest.readable?(@path) end
  890.  
  891.   # See <tt>FileTest.world_readable?</tt>.
  892.   def world_readable?() FileTest.world_readable?(@path) end
  893.  
  894.   # See <tt>FileTest.readable_real?</tt>.
  895.   def readable_real?() FileTest.readable_real?(@path) end
  896.  
  897.   # See <tt>FileTest.setuid?</tt>.
  898.   def setuid?() FileTest.setuid?(@path) end
  899.  
  900.   # See <tt>FileTest.setgid?</tt>.
  901.   def setgid?() FileTest.setgid?(@path) end
  902.  
  903.   # See <tt>FileTest.size</tt>.
  904.   def size() FileTest.size(@path) end
  905.  
  906.   # See <tt>FileTest.size?</tt>.
  907.   def size?() FileTest.size?(@path) end
  908.  
  909.   # See <tt>FileTest.sticky?</tt>.
  910.   def sticky?() FileTest.sticky?(@path) end
  911.  
  912.   # See <tt>FileTest.symlink?</tt>.
  913.   def symlink?() FileTest.symlink?(@path) end
  914.  
  915.   # See <tt>FileTest.writable?</tt>.
  916.   def writable?() FileTest.writable?(@path) end
  917.  
  918.   # See <tt>FileTest.world_writable?</tt>.
  919.   def world_writable?() FileTest.world_writable?(@path) end
  920.  
  921.   # See <tt>FileTest.writable_real?</tt>.
  922.   def writable_real?() FileTest.writable_real?(@path) end
  923.  
  924.   # See <tt>FileTest.zero?</tt>.
  925.   def zero?() FileTest.zero?(@path) end
  926. end
  927.  
  928.  
  929. class Pathname    # * Dir *
  930.   # See <tt>Dir.glob</tt>.  Returns or yields Pathname objects.
  931.   def Pathname.glob(*args) # :yield: p
  932.     if block_given?
  933.       Dir.glob(*args) {|f| yield self.new(f) }
  934.     else
  935.       Dir.glob(*args).map {|f| self.new(f) }
  936.     end
  937.   end
  938.  
  939.   # See <tt>Dir.getwd</tt>.  Returns the current working directory as a Pathname.
  940.   def Pathname.getwd() self.new(Dir.getwd) end
  941.   class << self; alias pwd getwd end
  942.  
  943.   # Pathname#chdir is *obsoleted* at 1.8.1.
  944.   def chdir(&block)
  945.     warn "Pathname#chdir is obsoleted.  Use Dir.chdir."
  946.     Dir.chdir(@path, &block)
  947.   end
  948.  
  949.   # Pathname#chroot is *obsoleted* at 1.8.1.
  950.   def chroot
  951.     warn "Pathname#chroot is obsoleted.  Use Dir.chroot."
  952.     Dir.chroot(@path)
  953.   end
  954.  
  955.   # Return the entries (files and subdirectories) in the directory, each as a
  956.   # Pathname object.
  957.   def entries() Dir.entries(@path).map {|f| self.class.new(f) } end
  958.  
  959.   # Iterates over the entries (files and subdirectories) in the directory.  It
  960.   # yields a Pathname object for each entry.
  961.   #
  962.   # This method has existed since 1.8.1.
  963.   def each_entry(&block) # :yield: p
  964.     Dir.foreach(@path) {|f| yield self.class.new(f) }
  965.   end
  966.  
  967.   # Pathname#dir_foreach is *obsoleted* at 1.8.1.
  968.   def dir_foreach(*args, &block)
  969.     warn "Pathname#dir_foreach is obsoleted.  Use Pathname#each_entry."
  970.     each_entry(*args, &block)
  971.   end
  972.  
  973.   # See <tt>Dir.mkdir</tt>.  Create the referenced directory.
  974.   def mkdir(*args) Dir.mkdir(@path, *args) end
  975.  
  976.   # See <tt>Dir.rmdir</tt>.  Remove the referenced directory.
  977.   def rmdir() Dir.rmdir(@path) end
  978.  
  979.   # See <tt>Dir.open</tt>.
  980.   def opendir(&block) # :yield: dir
  981.     Dir.open(@path, &block)
  982.   end
  983. end
  984.  
  985.  
  986. class Pathname    # * Find *
  987.   #
  988.   # Pathname#find is an iterator to traverse a directory tree in a depth first
  989.   # manner.  It yields a Pathname for each file under "this" directory.
  990.   #
  991.   # Since it is implemented by <tt>find.rb</tt>, <tt>Find.prune</tt> can be used
  992.   # to control the traverse.
  993.   #
  994.   # If +self+ is <tt>.</tt>, yielded pathnames begin with a filename in the
  995.   # current directory, not <tt>./</tt>.
  996.   #
  997.   def find(&block) # :yield: p
  998.     require 'find'
  999.     if @path == '.'
  1000.       Find.find(@path) {|f| yield self.class.new(f.sub(%r{\A\./}, '')) }
  1001.     else
  1002.       Find.find(@path) {|f| yield self.class.new(f) }
  1003.     end
  1004.   end
  1005. end
  1006.  
  1007.  
  1008. class Pathname    # * FileUtils *
  1009.   # See <tt>FileUtils.mkpath</tt>.  Creates a full path, including any
  1010.   # intermediate directories that don't yet exist.
  1011.   def mkpath
  1012.     require 'fileutils'
  1013.     FileUtils.mkpath(@path)
  1014.     nil
  1015.   end
  1016.  
  1017.   # See <tt>FileUtils.rm_r</tt>.  Deletes a directory and all beneath it.
  1018.   def rmtree
  1019.     # The name "rmtree" is borrowed from File::Path of Perl.
  1020.     # File::Path provides "mkpath" and "rmtree".
  1021.     require 'fileutils'
  1022.     FileUtils.rm_r(@path)
  1023.     nil
  1024.   end
  1025. end
  1026.  
  1027.  
  1028. class Pathname    # * mixed *
  1029.   # Removes a file or directory, using <tt>File.unlink</tt> or
  1030.   # <tt>Dir.unlink</tt> as necessary.
  1031.   def unlink()
  1032.     begin
  1033.       Dir.unlink @path
  1034.     rescue Errno::ENOTDIR
  1035.       File.unlink @path
  1036.     end
  1037.   end
  1038.   alias delete unlink
  1039.  
  1040.   # This method is *obsoleted* at 1.8.1.  Use #each_line or #each_entry.
  1041.   def foreach(*args, &block)
  1042.     warn "Pathname#foreach is obsoleted.  Use each_line or each_entry."
  1043.     if FileTest.directory? @path
  1044.       # For polymorphism between Dir.foreach and IO.foreach,
  1045.       # Pathname#foreach doesn't yield Pathname object.
  1046.       Dir.foreach(@path, *args, &block)
  1047.     else
  1048.       IO.foreach(@path, *args, &block)
  1049.     end
  1050.   end
  1051. end
  1052.  
  1053. module Kernel
  1054.   # create a pathname object.
  1055.   #
  1056.   # This method is available since 1.8.5.
  1057.   def Pathname(path) # :doc:
  1058.     Pathname.new(path)
  1059.   end
  1060.   private :Pathname
  1061. end
  1062.